home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-04-25 | 589 b | 29 lines | [TEXT/CWIE] |
- -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C)
- -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
- --
- class HELLO_WORLD
- --
- -- The "Hi World program" for SmallEiffel :-)
- --
- -- To compile type command : compile hello_world make
- -- Run with command : a.out
- --
- -- To compile an optimized version type : compile hello_world make -boost -O2
- --
-
- creation {ANY}
- make
-
- feature {ANY}
-
- make is
- local
- s: STRING;
- do
- !!s.make(10);
- Current.io.put_string("Hello World.%N");
- end; -- make
-
- end -- class HELLO_WORLD
-
-